-
Notifications
You must be signed in to change notification settings - Fork 18k
net/http: attempt deadlock fix in TestDisableKeepAliveUpgrade #43086
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
e31f859
to
fd783ef
Compare
This PR (HEAD: fd783ef) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/276375 to see it. Tip: You can toggle comments from me using the |
d32c154
to
4c05ef3
Compare
This PR (HEAD: 4c05ef3) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/276375 to see it. Tip: You can toggle comments from me using the |
Message from Damien Neil: Patch Set 3: Code-Review+2 Please don’t reply on this GitHub thread. Visit golang.org/cl/276375. |
Message from Dmitri Shuralyov: Patch Set 3: Run-TryBot+1 Trust+1 (3 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/276375. |
Message from Go Bot: Patch Set 3: TryBots beginning. Status page: https://farmer.golang.org/try?commit=dc3b6989 Please don’t reply on this GitHub thread. Visit golang.org/cl/276375. |
Message from Go Bot: Patch Set 3: Build is still in progress... Other builds still in progress; subsequent failure notices suppressed until final report. Consult https://build.golang.org/ to see whether they are new failures. Keep in mind that TryBots currently test exactly your git commit, without rebasing. If your commit's git parent is old, the failure might've already been fixed. Please don’t reply on this GitHub thread. Visit golang.org/cl/276375. |
4c05ef3
to
e58bd9a
Compare
This PR (HEAD: e58bd9a) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/276375 to see it. Tip: You can toggle comments from me using the |
e58bd9a
to
fa61250
Compare
Message from Anmol Sethi: Patch Set 4: (3 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/276375. |
This PR (HEAD: fa61250) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/276375 to see it. Tip: You can toggle comments from me using the |
1. The test now checks the response status code. 2. The transport has been changed to not set "Connection: Close" if DisableKeepAlive is set and the request is a HTTP/1.1 protocol upgrade. Updates golang#43073
fa61250
to
f809ceb
Compare
This PR (HEAD: f809ceb) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/276375 to see it. Tip: You can toggle comments from me using the |
Message from Bryan C. Mills: Patch Set 6: Run-TryBot+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/276375. |
Message from Go Bot: Patch Set 6: SlowBots beginning. Status page: https://farmer.golang.org/try?commit=1a49556a Please don’t reply on this GitHub thread. Visit golang.org/cl/276375. |
Message from Go Bot: Patch Set 6: TryBot-Result+1 SlowBots are happy. SlowBot builds that ran:
Please don’t reply on this GitHub thread. Visit golang.org/cl/276375. |
1. The test now checks the response status code. 2. The transport has been changed to not set "Connection: Close" if DisableKeepAlive is set and the request is a HTTP/1.1 protocol upgrade. Updates #43073 Change-Id: I9977a18b33b8747ef847a8d11bb7b4f2d8053b8c GitHub-Last-Rev: f809ceb GitHub-Pull-Request: #43086 Reviewed-on: https://go-review.googlesource.com/c/go/+/276375 Run-TryBot: Bryan C. Mills <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Damien Neil <[email protected]> Trust: Dmitri Shuralyov <[email protected]>
This PR is being closed because golang.org/cl/276375 has been merged. |
DisableKeepAlive is set and the request is a HTTP/1.1 protocol
upgrade.
Updates #43073